.kontakt-group {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.kontakt-group .kontakt-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.09;
  filter: saturate(0.7);
}

.kontakt-group .kontakt-scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.75) 0%, rgba(250, 248, 244, 0.35) 50%, rgba(250, 248, 244, 0.85) 100%);
}

.kontakt-group .kontakt-grid {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px;
}

.kontakt-group .module-title .container {
  padding-inline: 0;
}

.kontakt-group .section-title {
  max-width: 15ch;
}

.kontakt-group .small-title {
  font-size: 15px;
  max-width: 46ch;
  margin-bottom: 24rem;
}

.kontakt-group .contact-link {
  display: inline-flex;
  align-items: center;
}

.kontakt-group .contact-link .icon-ring {
  width: 50px;
  height: 50px;
  margin-right: 14px;
}

.kontakt-group .contact-link .icon-ring.static {
  animation: none;
}

.kontakt-group .contact-cap {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

.kontakt-group .contact-val {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.kontakt-group .kontakt-form {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  box-shadow: 0 18px 44px rgba(28, 28, 28, 0.07);
  padding: 36px;
}

.kontakt-group .kontakt-form h3 {
  font-size: 30px;
  margin-bottom: 6px;
  margin-top: 0;
}

.kontakt-group .field-icon {
  position: relative;
}

.kontakt-group .field-icon > svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.kontakt-group .field-icon.textarea > svg {
  top: 18px;
  transform: none;
}

.kontakt-group .form-control-jb {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line-warm);
  border-radius: 0;
  color: var(--ink);
  padding: 15px 16px 15px 44px;
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
  transition: background 0.3s ease, border-color 0.3s ease;
  box-shadow: none;
}

.kontakt-group .form-control-jb:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: none;
}

.kontakt-group .form-control-jb::-moz-placeholder {
  color: #a5a09a;
}

.kontakt-group .form-control-jb::placeholder {
  color: #a5a09a;
}

.kontakt-group .consent {
  display: flex;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--grey);
  cursor: pointer;
  margin-bottom: 8px;
}

.kontakt-group .consent input {
  margin: 2px 12px 0 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}

.kontakt-group .btn-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--sans);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  width: 100%;
}

.kontakt-group .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(169, 143, 95, 0.4);
  background: #b89d6c;
}

.kontakt-group .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(169, 143, 95, 0.3);
}

@media (max-width: 900px) {
  .kontakt-group .kontakt-grid {
    padding: 56px 0 48px;
  }
  .kontakt-group .kontakt-form {
    padding: 24px 18px;
  }
}