/* ============================================================
   CONTACT PAGE — refined for v4 visual language
   ============================================================ */

.con-header {
  padding: clamp(5rem, 9vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.con-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, var(--teal-glow), transparent 50%);
  pointer-events: none;
}
.con-header-in {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.con-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  max-width: 720px;
}
.con-header .lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.55;
}

/* Body grid */
.con-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

/* ─── LEFT: direct contact ───────────────────────────────── */
.con-l h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}
.con-l .sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.clink {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  text-decoration: none;
  color: var(--ink);
  transition: all var(--t-fast);
  margin-bottom: 0.5rem;
}
.clink:hover {
  border-color: var(--teal);
  background: var(--teal-tint);
}

.cico {
  width: 38px;
  height: 38px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cico svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

.ci-lbl {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.ci-val {
  display: block;
  font-size: 0.9375rem;
  color: var(--ink);
}

/* DSGVO note */
.dsgvo {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--teal);
  background: var(--teal-tint);
  border-radius: 0 2px 2px 0;
}
.dsgvo .dl {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.dsgvo p {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--ink-2);
}
.dsgvo a { color: var(--teal); text-decoration: underline; }

/* ─── RIGHT: form ────────────────────────────────────────── */
.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}
.frow2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  display: block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  color: var(--ink);
  outline: none;
  resize: vertical;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  font-family: var(--font-body);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-glow);
}
.field textarea { min-height: 120px; }

::placeholder { color: var(--muted-2); opacity: 1; }

.f-priv {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.55;
}
.f-priv a { color: var(--teal); text-decoration: underline; }

.f-ok {
  display: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--teal);
  padding: 0.85rem 1rem;
  background: var(--teal-tint);
  border-radius: 3px;
  border-left: 2px solid var(--teal);
}
.f-err {
  display: none;
  font-size: 0.875rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-2);
  border-left: 2px solid var(--muted);
  background: var(--bg-2);
  border-radius: 0 3px 3px 0;
}

/* ─── PROCESS STRIP AT BOTTOM ────────────────────────────── */
.con-process {
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 5vw, 4rem) 0;
}
.cp-in {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.cp-in h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.cp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}
.cp-step {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-2);
  position: relative;
}
.cp-step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--teal);
}
.cp-step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.cp-step h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.cp-step p {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ─── Mobile ──────────────────────────────────────────────── */
@media (max-width: 880px) {
  .con-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cp-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .frow2 { grid-template-columns: 1fr; }
  .cp-steps { grid-template-columns: 1fr; gap: 1.25rem; }
}
