.rep-info__card {
  position: relative;
  border-color: rgba(184, 134, 11, 0.35);
  background: linear-gradient(160deg, #fff 0%, #fff8e1 100%);
}

.rep-info__badge {
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #b8860b;
  margin-bottom: 8px;
  line-height: 1;
}

.contact-field__hint {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #7a6060;
  margin: -2px 0 8px;
  line-height: 1.45;
}

.contact-form .rep-field-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  min-width: 0;
}

.contact-form .rep-field-row .contact-field {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .contact-form .rep-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.rep-photo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px;
}

.rep-photo-preview {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e8d0dc;
  flex-shrink: 0;
}

.rep-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rep-photo-clear {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border: none;
  border-radius: 50%;
  background: rgba(44, 26, 26, 0.75);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.rep-photo-upload {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 2px dashed #e8d0dc;
  border-radius: 10px;
  background: #fdf6f8;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #c2185b;
  transition: border-color 0.2s, background 0.2s;
}

.rep-photo-upload:hover {
  border-color: #c2185b;
  background: #fff0f5;
}

.rep-photo-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}

.rep-privacy {
  font-size: 12px;
  color: #7a6060;
  line-height: 1.5;
  margin: 4px 0 12px;
}

.rep-page .contact-submit {
  background: linear-gradient(135deg, #b8860b 0%, #c2185b 100%);
}

.rep-page .contact-submit:hover {
  background: linear-gradient(135deg, #9a7209 0%, #a00046 100%);
}

@media (max-width: 480px) {
  .rep-photo-row {
    flex-direction: column;
    align-items: stretch;
  }

  .rep-photo-upload {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .rep-page .contact-submit {
    min-height: 52px;
    font-size: 16px;
  }
}
