/* =========================================================
   KEREN HAYESOD – KONTAKT
   ========================================================= */

:root {
  --blue-900: #0b2044;
  --blue-800: #15325c;
  --blue-700: #1a3e72;
  --blue-500: #1b81c4;
  --blue-400: #34b7ea;
  --blue-50:  #f4f7fb;
  --ink-900:  #0f172a;
  --ink-700:  #334155;
  --ink-500:  #64748b;
  --ink-300:  #cbd5e1;
  --ink-100:  #e7ecf3;
  --red:      #b20000;
  --red-dark: #8a0000;
  --gold:     #c9a24b;
  --gold-dark: #a6873a;
  --gold-light: #f5efdd;
  --cream:    #faf7f0;
  --green:    #2f8a5a;
  --white:    #ffffff;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08);
  --shadow-md: 0 10px 30px rgba(15,23,42,0.10);
  --shadow-lg: 0 25px 60px rgba(15,23,42,0.18);
  --shadow-blue: 0 18px 40px rgba(27,129,196,0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-900);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--blue-500);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--red); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: var(--blue-800);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(38px, 5.4vw, 62px); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; font-weight: 700; }

p { color: var(--ink-700); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 960px; }

.section { padding: 100px 0; }
.section--tight { padding: 70px 0; }
.section--alt { background-color: var(--cream); }
.section--dark {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-700) 55%, var(--blue-500) 140%);
  color: var(--white);
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--blue-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--red);
}
.eyebrow--gold { color: var(--gold-dark); }
.eyebrow--gold::before { background-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.3px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  min-height: 54px;
  line-height: 1.1;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 12px 24px rgba(178,0,0,0.28);
}
.btn--primary:hover {
  background-color: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn--blue {
  background-color: var(--blue-700);
  color: var(--white);
  border-color: var(--blue-700);
  box-shadow: var(--shadow-blue);
}
.btn--blue:hover {
  background-color: var(--blue-800);
  border-color: var(--blue-800);
  color: var(--white);
}

.btn--ghost {
  background-color: transparent;
  color: var(--blue-800);
  border-color: var(--ink-100);
}
.btn--ghost:hover {
  background-color: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline-white:hover {
  background-color: var(--white);
  color: var(--blue-800);
}

.btn--block { width: 100%; }

/* ---------- Header ---------- */
.topbar {
  background-color: var(--blue-900);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar__left { display: flex; gap: 22px; opacity: 0.9; }
.topbar__right { opacity: 0.85; }

.header {
  position: sticky;
  top: 0;
  background-color: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(21,50,92,0.08);
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.logo img { height: 58px; width: auto; }

.nav { display: flex; gap: 30px; margin-left: auto; margin-right: 16px; }
.nav a {
  color: var(--blue-800);
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 6px 0;
}
.nav a.is-active { color: var(--red); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background-color: var(--red);
  transition: width 0.25s;
}
.nav a:hover::after, .nav a.is-active::after { width: 100%; }
.nav a:hover { color: var(--red); }

.header__cta {
  padding: 12px 22px;
  font-size: 13px;
  min-height: 44px;
  text-transform: uppercase;
}

/* ---------- HERO (kompakt, freundlich) ---------- */
.hero {
  position: relative;
  padding: 80px 0 90px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('https://keren-hayesod.de/wp-content/uploads/2023/01/masada-mountain-israel-2022-11-15-10-39-35-utc-scaled.jpg');
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(11,32,68,0.94) 0%, rgba(21,50,92,0.78) 55%, rgba(27,129,196,0.40) 100%);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  max-width: 720px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #ffffff 0%, #9ed1f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__lead {
  font-size: 20px;
  color: #dbe4f2;
  max-width: 680px;
  line-height: 1.65;
}

/* ---------- Schnellkontakt-Kacheln (schweben über Hero) ---------- */
.quick-contact {
  margin-top: -60px;
  margin-bottom: 80px;
  position: relative;
  z-index: 5;
}

.quick-contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quick-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-400);
}

.quick-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
  margin-bottom: 6px;
}

.quick-card__icon svg { width: 24px; height: 24px; }

.quick-card--red .quick-card__icon {
  background: linear-gradient(135deg, var(--red), #d63a3a);
  box-shadow: 0 12px 24px rgba(178,0,0,0.28);
}

.quick-card--gold .quick-card__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 24px rgba(201,162,75,0.28);
}

.quick-card__label {
  font-size: 11px;
  font-weight: 900;
  color: var(--ink-500);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.quick-card__value {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-800);
  line-height: 1.3;
  margin-bottom: 4px;
}

.quick-card__hint {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: auto;
}

.quick-card a { color: inherit; font-weight: 900; }
.quick-card a:hover { color: var(--blue-500); }

/* ---------- KONTAKT-GRID ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Formular-Seite */
.contact-form {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--blue-500);
}

.contact-form h2 { font-size: 30px; margin-bottom: 8px; }
.contact-form__lead {
  color: var(--ink-500);
  font-size: 16px;
  margin-bottom: 28px;
}

/* Anliegen-Chips */
.topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.topic-chip {
  background-color: var(--white);
  border: 2px solid var(--ink-100);
  color: var(--blue-800);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.topic-chip:hover {
  border-color: var(--blue-500);
  color: var(--blue-500);
}

.topic-chip.is-active {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  border-color: var(--blue-700);
  box-shadow: var(--shadow-blue);
}

/* Form-Fields */
.form-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: var(--blue-800);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid var(--ink-100);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink-900);
  background-color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}

.form-field textarea { min-height: 140px; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--ink-300); }

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(27,129,196,0.14);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2315325c' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 46px;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: var(--blue-50);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.form-consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--blue-500);
  flex-shrink: 0;
}

.form-consent label {
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.55;
  cursor: pointer;
}

.form-consent a { color: var(--blue-500); font-weight: 700; text-decoration: underline; }

.form-submit {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.form-submit__note {
  font-size: 12px;
  color: var(--ink-500);
}

/* Sidebar: Info */
.contact-info {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--ink-100);
}

.info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--blue-50);
  color: var(--blue-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-card__icon svg { width: 22px; height: 22px; }

.info-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  margin-bottom: 8px;
}

.info-card p { font-size: 15px; color: var(--ink-700); line-height: 1.65; margin-bottom: 12px; }

.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-700);
}

.info-card li a { color: var(--blue-800); font-weight: 700; }
.info-card li a:hover { color: var(--blue-500); }

.info-card li .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--blue-50);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* Ansprechpartner-Karte */
.person-card {
  background: linear-gradient(160deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.person-card__avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 900;
  flex-shrink: 0;
}

.person-card__role {
  font-size: 11px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.person-card__name {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 4px;
}

.person-card__contact {
  font-size: 13px;
  color: #dbe4f2;
}

.person-card__contact a { color: var(--gold); font-weight: 700; }
.person-card__contact a:hover { color: #ffffff; }

/* ---------- STANDORTE ---------- */
.locations-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.location-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.location-card__map {
  height: 140px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  position: relative;
  overflow: hidden;
}

.location-card__map::before,
.location-card__map::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.location-card__map::before {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -60px;
  background: rgba(255,255,255,0.3);
}

.location-card__map::after {
  width: 140px;
  height: 140px;
  bottom: -40px;
  right: -30px;
  background: var(--gold);
}

.location-card__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  z-index: 2;
  text-align: center;
}

.location-card__pin-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4px;
  backdrop-filter: blur(10px);
}

.location-card__pin-icon svg { width: 22px; height: 22px; }

.location-card__body { padding: 24px; }

.location-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  color: var(--gold-dark);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.location-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--blue-800);
}

.location-card__details {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 16px;
}

.location-card__details strong { color: var(--blue-800); display: block; margin-bottom: 2px; }

.location-card__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-100);
}

.location-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-800);
  font-weight: 700;
}

.location-card__links a:hover { color: var(--red); }

.location-card__links .icon {
  color: var(--blue-500);
  width: 14px;
  height: 14px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  transition: box-shadow 0.25s, border-color 0.25s;
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 22px 26px;
  font-weight: 900;
  font-size: 17px;
  color: var(--blue-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Fraunces', serif;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-color: var(--blue-50);
  border-radius: 50%;
  transition: transform 0.25s, background-color 0.25s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231b81c4' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--blue-500);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}

.faq-item__answer {
  padding: 0 26px 26px;
  color: var(--ink-700);
  font-size: 16px;
  line-height: 1.75;
}

/* ---------- NEWSLETTER / SOCIAL ---------- */
.engage-card {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.engage-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.2), transparent 70%);
}

.engage-card__inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }

.engage-card h2 { color: var(--white); margin-bottom: 14px; }
.engage-card p { color: #dbe4f2; font-size: 17px; margin-bottom: 28px; }

.engage-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.engage-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background-color: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: all 0.2s;
}

.engage-form input::placeholder { color: rgba(255,255,255,0.55); }

.engage-form input:focus {
  outline: none;
  background-color: rgba(255,255,255,0.12);
  border-color: var(--gold);
}

.engage-form .btn {
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  padding: 16px 28px;
  min-height: 0;
}

.engage-form .btn:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.engage-socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 30px;
}

.engage-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.engage-socials a:hover {
  background-color: var(--gold);
  color: var(--blue-900);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.engage-socials svg { width: 20px; height: 20px; }

/* ---------- Footer ---------- */
.footer {
  background-color: var(--blue-900);
  color: #bfc9d6;
  padding: 80px 0 26px;
  font-size: 15px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer__logo img {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer p { color: #bfc9d6; font-size: 14px; line-height: 1.7; }

.footer h4 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: #bfc9d6; font-size: 14px; }
.footer a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: #8b98a8;
}

.mobile-cta { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .quick-contact__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info { position: static; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .topbar, .nav { display: none; }
  .header__inner { padding: 12px 0; }
  .logo img { height: 46px; }

  .hero { padding: 60px 0 70px; }
  .quick-contact { margin-top: -40px; }
  .quick-contact__grid { grid-template-columns: 1fr; }

  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

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

  .engage-card { padding: 40px 24px; }
  .engage-form { flex-direction: column; }
  .engage-form input { min-width: 0; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background-color: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.12);
    z-index: 90;
    gap: 10px;
  }
  .mobile-cta .btn { flex: 1; padding: 14px; font-size: 15px; min-height: 48px; }
  body { padding-bottom: 80px; }
}
/* Kontakt-Hero Hoehe-Fix 16.06.2026 — inline padding:0 ueberschreiben + neues Bild */
.hero{position:relative;min-height:360px;padding:96px 0 76px!important;display:flex;align-items:center;overflow:hidden;isolation:isolate}
.hero__bg{position:absolute!important;inset:0;z-index:-2;background-image:url("https://keren-hayesod.de/wp-content/uploads/2025/04/Keren-HAyesod-kennenlernen-scaled.jpeg")!important;background-size:cover!important;background-position:center 38%!important}
.hero::before{position:absolute;inset:0;z-index:-1}
.hero .container{position:relative;z-index:1}

/* Kontakt-Hero FIX2 16.06.2026 — hoehere Spezifitaet als .kh-redesign .section */
.kh-redesign .section.hero{padding:104px 0 86px!important;min-height:400px!important;display:flex;align-items:center}
.kh-redesign .section.hero .section-content{width:100%}

/* 17.06.2026 — Native Kontakt (UX Builder) Karten + Antwortzeiten */
.kh-cc .col-inner{height:100%}
.kh-cc{}
.kh-cc .ux_text, .kh-cc{}
.kh-cc > .col-inner{background:#fff;border:1px solid #e7ecf3;border-radius:16px;padding:30px 26px;box-shadow:0 10px 30px rgba(15,23,42,.06);height:100%}
.kh-cc-ic{width:54px;height:54px;border-radius:14px;display:flex;align-items:center;justify-content:center;font-size:24px;color:#fff;margin-bottom:18px;line-height:1}
.kh-cc-ic--red{background:#b20000}.kh-cc-ic--gold{background:#d7a94a}.kh-cc-ic--blue{background:#1b81c4}
.kh-cc-eyebrow{font-size:12px;font-weight:800;letter-spacing:1px;text-transform:uppercase;color:#94a1b3;margin-bottom:6px}
.kh-cc-title{font-family:"Fraunces",Georgia,serif;color:#0b2044;font-size:21px;margin:0 0 6px}
.kh-cc-sub{color:#64748b;font-size:14px;margin:0}
.kh-hours{background:#fff;border:1px solid #e7ecf3;border-radius:16px;padding:28px}
.kh-hours h3{font-family:"Fraunces",serif;color:#0b2044;margin:0 0 14px}
.kh-hours ul{list-style:none;margin:0;padding:0}
.kh-hours li{padding:9px 0 9px 28px;position:relative;color:#334155;border-bottom:1px solid #f1f5f9;font-size:15px}
.kh-hours li:last-child{border-bottom:none}
.kh-hours li:before{content:"\2713";position:absolute;left:0;color:#1b81c4;font-weight:900}
