/* ============================================================
   KONTAKT PAGE — reuses mc-form styles from marketing-check.css
   ============================================================ */

body {
  /* Hintergrund minimal transparenter als --bg (#f7f6f5) */
  background: rgba(247, 246, 245, 0.96);
  max-width: var(--max-w);
  margin: 0 auto;
  overflow-x: hidden;
}

/* ── X-Schließen-Button (statt Burger auf Kontakt-Seite) ───── */
/* Sitzt an gleicher Position wie der Burger (rechts im Header)  */
.kt-close-btn {
  width: 30px;
  height: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.kt-close-btn span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--dark);
  border-radius: 1.5px;
  position: absolute;
  left: 50%;
  top: 50%;
}

.kt-close-btn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.kt-close-btn span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Intro: Heading + Adresse */
.kt-intro {
  padding: 120px 29px 0;
}

.kt-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--dark);
  margin: 0 0 24px;
}

.kt-address {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Figma: "Mokka Design" allein, dann Lücke */
.kt-address__name {
  display: block;
  line-height: normal;
  margin-bottom: 16px; /* entspricht ~1 leerer Zeile */
}

/* Figma: Adresszeilen mit line-height 30px */
.kt-address__lines {
  display: block;
  line-height: 30px;
  margin-bottom: 16px; /* Lücke vor E-Mail */
}

/* Figma: E-Mail normal */
.kt-address__email {
  display: block;
  line-height: normal;
}

.kt-address a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Form wrap */
.kt-form-wrap {
  padding: 40px 29px 0;
}

/* Reuse mc-form styles (form fields, submit, mail-alt) */
.mc-form {
  display: flex;
  flex-direction: column;
}

.mc-field {
  position: relative;
  padding-top: 8px;
  border-bottom: 1px solid var(--dark);
  margin-bottom: 0;
}

.mc-field + .mc-field {
  margin-top: 24px;
}

.mc-field label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 4px;
  pointer-events: none;
}

.mc-field input,
.mc-field textarea {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
  outline: none;
  padding: 4px 0 8px;
  resize: none;
  -webkit-appearance: none;
}

.mc-field--textarea textarea {
  min-height: 80px;
}

.mc-field:focus-within label {
  color: var(--dark);
}

.mc-submit {
  width: 100%;
  height: 40px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-top: 32px;
  transition: background 0.25s ease;
}

.mc-submit:hover { background: #333; }

.mc-mail-alt {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--grey);
  text-align: center;
  line-height: 1.5;
  margin: 24px 0 0;
}

.mc-mail-alt a {
  color: var(--grey);
  text-decoration: underline;
  text-underline-offset: 2px;
}
